home *** CD-ROM | disk | FTP | other *** search
/ Libris Britannia 4 / science library(b).zip / science library(b) / INFO / DOSTIPS4.ZIP / DOSATKYB.TXT next >
Text File  |  1986-06-28  |  3KB  |  69 lines

  1.                       Speedier AT Keyboard
  2.        (PC Magazine Vol 5 No 6 Mar 25, 1986 User-to-User)
  3.  
  4.      The article from PC Mag Vol 4 No 19 User-to-User above described
  5. AT keyboard control.  ATFASTKB.COM is a program that will set the
  6. keyboard delay to 0.25 second and repeat rate to 20 per second and can
  7. be included in an AUTOEXEC.BAT file.
  8.  
  9. A>DEBUG
  10. -A 100
  11. xxxx:0100  MOV  AL,F3
  12.            OUT  60,AL
  13.            MOV  CX,1000
  14.            NOP
  15.            LOOP 0107
  16.            MOV  AL,04
  17.            OUT  60,AL
  18.            RET
  19. xxxx:010F
  20. -RCX
  21. CX 0000
  22. :F
  23. -N ATFASTKB.COM
  24. -W
  25. Writing 000F bytes
  26. -Q
  27.  
  28. To change the settings from 0.25/20 to other values, replace the 04
  29. value at address 10A by the appropriate value from the table below.
  30. The values are computed from the data given in the IBM AT Tech Ref
  31. Manual.
  32.  
  33. delay (second)             0.25   0.50   0.75   1.00
  34.                    ----------------------------------
  35. repeat
  36. (per second)       30.0     00     20     40     60
  37.                    26.7     01     21     41     61
  38.                    24.0     02     22     42     62
  39.                    21.8     03     23     43     63
  40.                    20.0     04     24     44     64
  41.                    18.5     05     25     45     65
  42.                    17.1     06     26     46     66
  43.                    16.0     07     27     47     67
  44.                    15.0     08     28     48     68
  45.                    13.3     09     29     49     69
  46.                    12.0     0A     2A     4A     6A
  47.                    10.9     0B     2B     4B     6B
  48.                    10.0     0C     2C     4C     6C
  49.                     9.2     0D     2D     4D     6D
  50.                     8.6     0E     2E     4E     6E
  51.                     8.0     0F     2F     4F     6F
  52.                     7.5     10     30     50     70
  53.                     6.7     11     31     51     71
  54.                     6.0     12     32     52     72
  55.                     5.5     13     33     53     73
  56.                     5.0     14     34     54     74
  57.                     4.6     15     35     55     75
  58.                     4.3     16     36     56     76
  59.                     4.0     17     37     57     77
  60.                     3.7     18     38     58     78
  61.                     3.3     19     39     59     79
  62.                     3.0     1A     3A     5A     7A
  63.                     2.7     1B     3B     5B     7B
  64.                     2.5     1C     3C     5C     7C
  65.                     2.3     1D     3D     5D     7D
  66.                     2.1     1E     3E     5E     7E
  67.                     2.0     1F     3F     5F     7F
  68.  
  69.